Search

Selected option

Search Results

Searchflash drive , find 25 items
  • Sort by
  • Most recent
  • Popularity
Product  Application  Learning  Watch time - 5:20
Hi everyone, I'm Aaron. The FAE of Nuvoton technology. Today, I'm glad to show you the Nuvoton secure development board, NuMaker-IoT-M2354. The NuMaker-IoT-M2354 is an IoT evaluation board powered by the NuMicro® M2354 series. Before the introduction of NuMaker-IoT-M2354, I will take you to a quick understanding of NuMicro M2354. The M2354 is the latest NuMicro IoT series product which is based on Arm® Cortex®-M23 CPU core technology. The TrustZone® technology based on Armv8-M architecture is a CPU system-wide approach to microcontroller security. The M2354 series carry 1 Mbytes embedded Flash memory and 256 Kbytes SRAM. It's essential for IoT devices with real-time OS requirements. And you can focus on software development without warring about the flash and SRAM resource. The M2354 series is equipped with plenty of peripherals. In addition to providing UART I2C SPI Timer, it also supports the Quad SPI, USB FS OTG, and CAN BUS. Furthermore, to satisfy the IoT device's display development, the M2354 series built-in 8 COM x 40 SEG LCD controller drives up to 320 dots to meet various smart home and IoT appliances. In addition to providing many peripherals, the critical feature of M2354 is supporting many security functions. The secure boot ensures the legality and integrity of the running firmware. The hardware crypto with RSA/ECC/AES/SHA accelerators can help the device connect to the cloud fast and safely. Moreover, the M2354 is equipped with Key Store, which could be used with crypto accelerators to enhance the chip security level. To comply with Arm PSA CertifiedTM Level 3, the M2354 has implemented some countermeasures to protect against non-invasive attacks like side-channel attacks or fault injection attacks. The NuMaker-IoT-M2354 equips a Bosch environmental sensor, BME680, which contains temperature, humidity, barometric pressure, and VOC gas sensing capabilities. After getting data from the sensor, users can send data to the cloud, such as Pelion or AWS, by Mbed OS. Because M2354 supports hardware crypto, the data can be sent more efficiently and safely. The data could be shown on the LCD panel by the LCD library provided in the M2354 BSP. The NuMaker-IoT-M2354 contains a Wi-Fi module and LoRa module for wireless applications. Depending on the data throughput and power consumption, you can choose one of them for your IoT applications. In the LoRa network, each node is not connected but must be connected to the gateway before being linked back to the central host, or data can be transmitted to another node through the central host. For example, if choosing the LoRa module for the cloud development, you could use NUC980 LoRa Gateway for your gateway platform. The NuMaker-IoT-M2354 supports the radio frequency band of the LoRa module on 915MHz and 433MHz, depending on the customer's requirement. In addition to providing the rich peripheral, the NuMaker-IoT-M2354 also equips the Arduino UNO connector and mikroBUS™ connector for flexible applications. Suppose you want to develop other wireless connecting features like 4G-LTE or NB-IoT. In that case, the Nuvoton also provides a UNO-to-PCI adapter board to supports Quectel EC21 4G/LTE and Quectel BG96 NB-IoT modules. The NuMaker-IoT-M2354 also provides multiple power supplies by external power connectors and an ammeter connector that can instantly measure power consumption. In addition, the Nu-link2-Me on the board is a debugger and programmer supporting development on Keil, IAR, GCC, and Mbed IDE. #en #Learning #Basic #Application #Product - Online Purchase Development Tools: ● M2354 Series https://www.nuvoton.com/products/microcontrollers/arm-cortex-m23-mcus/m2354-series/index.html ● NuMaker-LoRa-NUC980 https://www.nuvoton.com/products/iot-solution/lora-platform/ ● NuMaker-M2354 https://direct.nuvoton.com/tw/numaker-m2354 ● Quectel-BG96A https://direct.nuvoton.com/en/quectel-bg96a ● Quectel-EC21A https://direct.nuvoton.com/en/quectel-ec21a - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC buy now: https://direct.nuvoton.com/ contact us: SalesSupport@nuvoton.com
Product  Tool  Learning  Watch time - 8:24
The video introduces Nuvoton's MPU N9H30's development set-up for Linux and Non-OS, taking NuMaker-emWin-RDK-N9H30 for example. Starting from the EVB introduction to BSP and related software downloads. - User manuals and related resource can be downloaded https://www.nuvoton.com/products/gui-solution/gui-reference-design/numaker-emwin-rdk-n9h30/ First, we introduce how to program Linux OS to the N9H30 evaluation board Find the N9H30 evaluation board resource that we used on Nuvoton’s Github and download the VMware Image https://github.com/OpenNuvoton/MPU-Family VMware application can be downloaded from the VMware website https://www.vmware.com/tw/products/workstation-player/workstation-player-evaluation.html First, open the VMware Find the ubuntu_NUC970_980_Linux folder we downloaded Choose Ubuntu 64-bit_nuvoton.vmx Choose Play virtual machine The password is “user” It will take a while to open this application for the first time Open the terminal when the system is ready Enter NUC970_Buildroot-master folder After entering the folder, we need to update the Buildroot tool Enter the command as shown below “git reset –hard” “git pull” After updating, enter the dl folder Remove the original Linux kernel and u-boot Enter the command as shown below “sudo rm -rf linux-master.tar.gz uboot-master.tar.gz” After entering, enter the password “user” Leave the dl folder and enter the Buildroot folder Enter the “make clean” command You don’t need to do these steps unless updating Buildroot tools Now, we set up the evaluation board configuration Enter configs folder to search evaluation board name Back to buildroot after searching Enter “make nuvoton_n9h30_emwin_defconfig” to generate configuration file After finishing these step, enter “make” to compile It will take about three hours to compile After compiling, copy the two files below to windows “/NUC970_Buildroot-master/output/images/uImage” “/NUC970_Buildroot-master/output/build/uboot-master/u-boot.bin” Create text file ”env-nor.txt” The content is shown below: baudrate=115200 bootdelay=1 stderr=serial stdin=serial stdout=serial setspi=sf probe 0 50000000 loadkernel=sf read 0x7fc0 0x200000 0x600000 bootcmd=run setspi;run loadkernel;bootm 0x7fc0 bootargs=noinitrd root=/dev/mtdblock2 rw rootfstype=jffs2 console=ttyS0 rdinit=/sbin/init mem=32M mtdparts=m25p80:0x200000@0x0(u-boot),0x600000@0x200000(kernel),-(user) ignore_loglevel Then, we need to install NuWriter and related file The NuWriter is a programming tool provided by Nuvoton. The NuWriter application and firmware code are open-sourced, and users can add new features or develop new user interfaces per user’s application NuWriter: https://github.com/OpenNuvoton/MPU-Family Open “NUC970_NuWriter-master” Enter Driver folder and install “WinUSB4NuVCOM.exe” Enter /Nuwriter/Release and execute NuWriter Choose IC number based on the evaluation board We need to program Image to SPI Flash, so we choose SPI Here we need to turn the all Power-On Setting to ON Push Reset button Return to NuWriter to check the green light and the connection If it is not connecting, click Re-Connect to reconnect After confirm the connection, start to program Image Program the three files to particular address u-boot.bin program to 0xe00000 env.nor.txt program to 0x80000 uImage program to 0x200000 After programming, turn the Power-On Setting to off Push the Reset button Evaluation board can start to boot from SPI-NOR After booting, we need to find the rcS demo application under/etc/init.d Enter “chmod 777 rcS” to modify the application Now, you can see the application on the evaluation board panel Here, we finish compiling and programming The next topic is how to compile and program Non-OS code First, download MDK-Arm from the link below https://www.keil.com/download/product/ Download the Non-OS BSP provided by Nuvoton https://github.com/OpenNuvoton/MPU-Family The BSP includes Keil environment set up user manual Use Keil need to purchase the related license After downloading, Open Keil uVision Click the File on the upper left and choose Open Go to the BSP that we downloaded choose BSP, SampleCode, emWin_SimpleDemo, KEIL and emWin_SimpleDemo.uvproj Click Option for Target Click Device and choose NuMicro ARM9 Database and N9H_series After setting up, click Rebuild, and it will generate a sample code application which is a binary file Open the NuWriter and connect it to the evaluation board Choose SPI and search the application we built \N9H30_emWin_Non-OS_BSP_v1.04.000\N9H30_emWin_Non-OS_BSP_v1.04.000\BSP\SampleCode\emWin_SimpleDemo\KEIL\obj\emWin_SimpleDemo_FW070TFT_24BPP.bin Follow the setting and program the file to 0x0 After programming, turn the Power-On Setting to boot from SPI You can see the demo application on the evaluation #Basic #Product #Tool #Learning #en - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC buy now: https://direct.nuvoton.com/ contact us: SalesSupport@nuvoton.com
Product  Learning  Watch time - 4:58
Nuvoton announced the latest ML51/ML54/ML56 microcontroller, built-in capacitive touch sensing, LCD driver highly integrated low power platform. Based on 1T 8051 core, running up to 24MHz, the power consumption in normal run mode is 80uA/MHz, lower than 1uA in power down mode the power consumption while power down with LCD on is lower than 20uA. - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/tw/low-power-8051-series/ Contact us: SalesSupport@nuvoton.com #Product #Learning #Basic #en
Training  Tool  Learning  Watch time - 3:23
Demonstrate how to use the ICP Programming Tool to generate a programming file, and use the PC to save the firmware to the USB/SD storage device, insert the USB/SD storage device into Nu-Link2-Pro, and then connect the target chip, press the trigger button to complete offline programming. - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://bit.ly/3bk0AD8 Contact us: SalesSupport@nuvoton.com #en #Tool #Training #Intermediate #Learning
Training  Tool  Learning  Watch time - 2:1
1. Explain how to use ICP Programming Tool to update Nu-Link2-Pro's firmware. 2. Explain how to update the Nu-Link2-Pro's firmware by pressing the trigger button before power is on. Then the power is on and dragging files to the Nu-Link2 drive. - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://bit.ly/3bk0AD8 Contact us: SalesSupport@nuvoton.com #en #Tool #Training #Intermediate #Learning
Training  Tool  Learning  Watch time - 4:36
1. Show how Nu-Link2-Pro can use ICP Programming Tool on PC to program target chips online 2. Show how Nu-Link2-Pro drag and drop files to the NuMicro MCU drive to program the target chip online - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://bit.ly/3bk0AD8 Contact us: SalesSupport@nuvoton.com #en #Tool #Training #Intermediate #Learning
Training  Tool  Learning  Watch time - 1:43
This video introduces how to download and install the Nu-Link Keil driver. The content includes how to download the Nu-Link Keil driver from the Nuvoton website, as well as the things you need to pay attention to during installation, so that you can use Arm Keil faster and smoother. #Tool #Training #Learning #Intermediate #en - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/numaker-m251sd Contact us: SalesSupport@nuvoton.com
Training  Tool  Learning  Watch time - 4:14
The video will introduce you the NuMicro™ Family M251/M252 Series BSP, includes how to download the BSP and introduction of each sample codes and folders. And help you use the template to develop your first M251/M252 program. #Tool #Training #Learning #Intermediate #en - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/numaker-m251sd Contact us: SalesSupport@nuvoton.com
Product  Learning  Watch time - 6:6
Nuvoton announced the latest ML56 microcontroller, built-in capacitive touch sensing, LCD driver highly integrated low power platform. And provides capacitive touch sensor and LCD driver library. The solution is delivered through the API guide, which includes details on each function call, parameters and returns. Finally, this video provides an overview on how to develop a custom touch key and LCD application from the BSP release. - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/tw/low-power-8051-series/ Contact us: SalesSupport@nuvoton.comon.com #Product #Learning #Basic #en
Training  Tool  Learning  Watch time - 3:24
Hello everyone I am Chris, the Field Application Engineer from Nuvoton Technology. Today I will introduce the programming and debugging tool, called NuLink-Gang, and NuLink2-Pro. And I will show you in what kind of situation you can utilize the tools. During system development, Nuvoton provides three IDE interfaces: KEIL, IAR, and NuEclipse for user to develop source code. When programming the Chip, Nuvoton provides ICP programming Tool in PC and the debugger Nu-Link2-Pro for users to perform debugging and programming function. User who uses all of the Nuvoton Nu-Maker boards series can develop through the Nu-Link2-Me debugger and programmer; it’s attached to the board. During the mass-production stage, there are 2 modes for programming the target chip. One is online programming and the other is offline programming. At first, in online programming mode, user can use ICP programming Tool and a Nu-Link2-Pro to program a target chip. Besides, if it needs to program several chips at one times, the Nu-Link Command Tool supports program multiple develop board by several Nu-Link2-Pro. Nu-Link2-Pro also supports drag-and-drop Flash programming. User can intuitively complete the programming action. Nu-Link2-Pro In offline programming mode, user can pre-store the programming file in SPI flash, USB flash drive, or SD card. When user wants to program the target chip, pressing the programming button on Nu-Link2-Pro to complete the programming action. If it needs a large number of ICs to be programming, it recommends using the Nu-Link-Gang programmer. Nu-Link-Gang programmer can perform offline programming on four different chips at a time, significantly increasing the programming efficiency. Besides, Nu-Link-Gang programmer can also use the control bus to connect with an automatic programming machine for automatic programming. In the system upgrade, Nu-Link2-Pro also provides five standard communication interfaces such as SPI, I2C, UART, RS485, and CAN for transmission, which is convenient for users to upgrade the system. That’s all for the introduction of Nuvoton’s programming and debugging tool, NuLink-Gang, and NuLink2-Pro. Thank you for watching it. If you want to know more details, please contact us! Thank you. #Tool #Training #Learning #Intermediate #en - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/numaker-m251sd Contact us: SalesSupport@nuvoton.com
Product  Learning  Watch time - 9:3
Nuvoton announced the latest ML51/ML54/ML56 microcontroller, built-in capacitive touch sensing, LCD driver highly integrated low power platform. Based on 1T 8051 core, running up to 24MHz, the power consumption in normal run mode is 80uA/MHz, lower than 1uA in power down mode the power consumption while power down with LCD on is lower than 20uA. 0:00 intro 0:37 NuMicro 8051 Microcontroller 1:38 ML51/ML54/ML56 Product Portfolio 2:18 ML51/ML54/ML56 Features 3:27 Broad Scalability 4:05 Provide 4 Different Power Modes 4:44 LCD Driver Feature 5:52 Touch Key Features 7:05 Target Applications #Product #Learning #Basic #en #ML51 #ML54 #ML56 #8051 #LowPower #LCD-Driver #HumanMachineInterface #HMI #TouchKey-IC #HomeAppliance #EmbeddedWorld2022 - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/tw/low-power-8051-series/ Contact us: SalesSupport@nuvoton.com
Training  Tool  Learning  Watch time - 5:53
Hello everyone, I am Morgan, the principal engineer of Nuvoton Technology. Today, I will show you how to connect to AWS IoT service using MbedOS on NuMaker-IoT-M487 development board The sample code is on GitHub, the URL is https://github.com/OpenNuvoton/Mbed-to-AWS-IoT To avoid typos, use keyword “OpenNuvoton” to search on google. Find the Nuvoton on GitHub, and click it On the Nuvoton GitHub page, use AWS as keyword to search the sample code: Mbed-to-AWS-IoT Right click to copy the URL for later use. Then enter the URL https://ide.mbed.com After log in, make sure the NuMaker-IoT-M487 board has selected in the upper right corner. If not, please refer Nuvoton IoT Tutorial series “Get Started with Mbed OS”. There is detailed description of how to add a board. Click the “Import” on the left of menu bar. In the “Import Wizard”, click “Click here” Please paste or key in the sample code URL to “Source URL:”, Select Import as “Program” Click “Import Name”, the project name “Mbed-to-AWS-IoT” will be filled automatically. Then click “Import”. After sample code imported, click “mbed_app.json” to open it. To use Wi-Fi, you have to configure SSID and password to match your Wi-Fi AP setting. In NuMaker_IOT_M487 session of mbed_app.json file, find the “wifi-ssid” to set your SSID. It is at line 44. And then set password to “wifi-password”. It is at line 45. Save it and click “Compile” to build the code. It takes time to compile code, please wait. You need an AWS account to use AWS IoT Core service. To create a thing, a policy, and certificates, then put the certificate to MQTT_server_setting.h file in the sample code. The sample code has included a certificate provided by Nuvoton for test only, so that you can quickly operate this example. If you don’t have an AWS account, it is recommended that you apply for an account and use your certificates in the example to observe the connection status on AWS IoT console page. After completed, “Success” will appear in the compile output window. The browser downloads the binary firmware file directly after a successful compiling. It will be saved in a default download folder. In Chrome, you can click download file and select “Show in folder”. Then we connect the NuMaker-IoT-M487 USB port to your computer. Please find the virtual COM port assigned for NuMaker-IoT-M487 in Device Manager. In the tutorial, the “Nu-Link Virtual Com Port” is COMx. Then use your favorite terminal tool. Here we use Putty. Open the COMx port with 115200 baud rate. And no flow control settings. Then “Open” it. Back to the folder you just download the binary firmware file (Mbed-to-AWS-IoT.NUMAKER_IOT_M487.bin). Drag and drop the file to NuMicro MCU drive. You will see the copying progress dialog box. You can see the messages on terminal. The device has acquired IP address from Wi-Fi AP, then successfully connect to AWS IoT and subscribe a topic. Then press button (SW2) on board to send a message. You can see the message published to server and received a message from server. That’s all for this tutorial. Thank you for watching. Welcome to subscribe to our channel. If you want to get more information, please contact us “SalesSupport@nuvoton.com” - For more information, please visit Nuvoton Technology Website: https://bit.ly/3hVdcmC Buy now: https://direct.nuvoton.com/tw/numaker-iot-m487 Contact us: SalesSupport@nuvoton.com #tool #training #learning #intermediate #en
This website uses cookies to ensure you get the best experience on our website. Learn more
OK